home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 104 / MacAddict_104_2005-04.iso / Software / Internet & Communication / WordPress 1.2.2 freeware.dmg / wordpress / wp-mail.php < prev    next >
PHP Script  |  2004-05-19  |  5KB  |  157 lines

  1. <?php
  2. require(dirname(__FILE__) . '/wp-config.php');
  3.  
  4. require_once(ABSPATH.WPINC.'/class-pop3.php');
  5.  
  6. error_reporting(2037);
  7.  
  8. $time_difference = get_settings('gmt_offset');
  9.  
  10. $pop3 = new POP3();
  11.  
  12. if (!$pop3->connect(get_settings('mailserver_url'), get_settings('mailserver_port'))) :
  13.     echo "Ooops $pop3->ERROR <br />\n";
  14.     exit;
  15. endif;
  16.  
  17. $count = $pop3->login(get_settings('mailserver_login'), get_settings('mailserver_pass'));
  18. if (0 == $count) die(__('There doesn’t seem to be any new mail.'));
  19.  
  20.  
  21. for ($i=1; $i <= $count; $i++) :
  22.  
  23.     $message = $pop3->get($i);
  24.  
  25.     if(!$pop3->delete($i)) {
  26.         echo '<p>Oops '.$pop3->ERROR.'</p></div>';
  27.         $pop3->reset();
  28.         exit;
  29.     } else {
  30.         echo "<p>Mission complete, message <strong>$i</strong> deleted.</p>";
  31.     }
  32.  
  33.     $content = '';
  34.     $content_type = '';
  35.     $boundary = '';
  36.     $bodysignal = 0;
  37.     $dmonths = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
  38.                      'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
  39.     foreach ($message as $line) :
  40.         if (strlen($line) < 3) $bodysignal = 1;
  41.  
  42.         if ($bodysignal) {
  43.             $content .= $line;
  44.         } else {
  45.             if (preg_match('/Content-Type: /i', $line)) {
  46.                 $content_type = trim($line);
  47.                 $content_type = substr($content_type, 14, strlen($content_type)-14);
  48.                 $content_type = explode(';', $content_type);
  49.                 $content_type = $content_type[0];
  50.             }
  51.             if (($content_type == 'multipart/alternative') && (preg_match('/boundary="/', $line)) && ($boundary == '')) {
  52.                 $boundary = trim($line);
  53.                 $boundary = explode('"', $boundary);
  54.                 $boundary = $boundary[1];
  55.             }
  56.             if (preg_match('/Subject: /i', $line)) {
  57.                 $subject = trim($line);
  58.                 $subject = substr($subject, 9, strlen($subject)-9);
  59.                 if (!preg_match('#\=\?(.+)\?Q\?(.+)\?\=#i', $subject)) {
  60.                   $subject = wp_iso_descrambler($subject);
  61.                 }
  62.             }
  63.             if (preg_match('/Date: /i', $line)) { // of the form '20 Mar 2002 20:32:37'
  64.                 $ddate = trim($line);
  65.                 $ddate = str_replace('Date: ', '', $ddate);
  66.                 if (strpos($ddate, ',')) {
  67.                     $ddate = trim(substr($ddate, strpos($ddate, ',')+1, strlen($ddate)));
  68.                 }
  69.                 $date_arr = explode(' ', $ddate);
  70.                 $date_time = explode(':', $date_arr[3]);
  71.                 
  72.                 $ddate_H = $date_time[0];
  73.                 $ddate_i = $date_time[1];
  74.                 $ddate_s = $date_time[2];
  75.                 
  76.                 $ddate_m = $date_arr[1];
  77.                 $ddate_d = $date_arr[0];
  78.                 $ddate_Y = $date_arr[2];
  79.                 for ($i=0; $i<12; $i++) {
  80.                     if ($ddate_m == $dmonths[$i]) {
  81.                         $ddate_m = $i+1;
  82.                     }
  83.                 }
  84.                 $ddate_U = mktime($ddate_H, $ddate_i, $ddate_s, $ddate_m, $ddate_d, $ddate_Y);
  85.  
  86.                 $post_date = gmdate('Y-m-d H:i:s', $ddate_U + ($time_difference * 3600));
  87.                 $post_date_gmt = gmdate('Y-m-d H:i:s', $ddate_U);
  88.             }
  89.         }
  90.     endforeach;
  91.  
  92.     $ddate_today = time() + ($time_difference * 3600);
  93.     $ddate_difference_days = ($ddate_today - $ddate_U) / 86400;
  94.  
  95.  
  96.     $subject = trim(str_replace(get_settings('subjectprefix'), '', $subject));
  97.  
  98.     if ($content_type == 'multipart/alternative') {
  99.         $content = explode('--'.$boundary, $content);
  100.         $content = $content[2];
  101.         $content = explode('Content-Transfer-Encoding: quoted-printable', $content);
  102.         $content = strip_tags($content[1], '<img><p><br><i><b><u><em><strong><strike><font><span><div>');
  103.     }
  104.     $content = trim($content);
  105.  
  106.     echo "<p><b>Content-type:</b> $content_type, <b>boundary:</b> $boundary</p>\n";
  107.     echo "<p><b>Raw content:</b><br /><pre>".$content.'</pre></p>';
  108.  
  109.     $content = trim($content);
  110.  
  111.     $content = apply_filters('phone_content', $content);
  112.  
  113.     $post_title = xmlrpc_getposttitle($content);
  114.  
  115.     if ($post_title == '') $post_title = $subject;
  116.  
  117.     if (empty($post_categories)) $post_categories[] = get_settings('default_category');
  118.  
  119.     $post_title = addslashes(trim($post_title));
  120.     $content = preg_replace("|\n([^\n])|", " $1", $content);
  121.     $content = addslashes(trim($content));
  122.  
  123.  
  124.     $sql = "INSERT INTO $tableposts (post_author, post_date, post_date_gmt, post_content, post_title, post_modified, post_modified_gmt) VALUES (1, '$post_date', '$post_date_gmt', '$content', '$post_title', '$post_date', '$post_date_gmt')";
  125.  
  126.     $result = $wpdb->query($sql);
  127.     $post_ID = $wpdb->insert_id;
  128.  
  129.     do_action('publish_post', $post_ID);
  130.     do_action('publish_phone', $post_ID);
  131.     pingback($content, $post_ID);
  132.  
  133.     echo "\n<p><b>Posted title:</b> $post_title<br />";
  134.     echo "\n<b>Posted content:</b><br /><pre>".$content.'</pre></p>';
  135.  
  136. if (!$post_categories) $post_categories[] = 1;
  137. foreach ($post_categories as $post_category) :
  138.     $post_category = intval($post_category);
  139.  
  140.     // Double check it's not there already
  141.     $exists = $wpdb->get_row("SELECT * FROM $tablepost2cat WHERE post_id = $post_ID AND category_id = $post_category");
  142.  
  143.      if (!$exists && $result) { 
  144.         $wpdb->query("
  145.         INSERT INTO $tablepost2cat
  146.         (post_id, category_id)
  147.         VALUES
  148.         ($post_ID, $post_category)
  149.         ");
  150.     }
  151. endforeach;
  152.  
  153. endfor;
  154.  
  155. $pop3->quit();
  156.  
  157. ?>